home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Application / MouseEventHandler.h < prev    next >
Text File  |  2000-06-23  |  500b  |  26 lines

  1. // MouseEventHandler.h
  2.  
  3. #ifndef MouseEventHandler_h
  4. #define MouseEventHandler_h
  5.  
  6. #ifndef ClickHandler_h
  7. #include "ClickHandler.h"
  8. #endif
  9.  
  10. class MouseDownEvent;
  11. class MouseUpEvent;
  12. class MouseMovedEvent;
  13.  
  14. class MouseEventHandler: public ClickHandler
  15.   {
  16.     protected:
  17.         MouseEventHandler()            {}
  18.     
  19.     public:
  20.         virtual void HandleMouseDownEvent( const MouseDownEvent& );
  21.         virtual void HandleMouseUpEvent( const MouseUpEvent& );
  22.         virtual void HandleMouseMovedEvent( const MouseMovedEvent& );
  23.   };
  24.  
  25. #endif
  26.